home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / base / scripts.vol / commander.cs < prev    next >
Encoding:
Text File  |  1999-09-14  |  974 b   |  24 lines

  1. function CommandGui::onOpen()
  2. {
  3.     //initialize the commander buttons
  4.  
  5.     if ($pref::mapFilter & 0x0001) Control::setValue(IDCTG_CMDO_PLAYERS, "TRUE");
  6.     else Control::setValue(IDCTG_CMDO_PLAYERS, "FALSE");
  7.  
  8.     if ($pref::mapFilter & 0x0002) Control::setValue(IDCTG_CMDO_TURRETS, "TRUE");
  9.     else Control::setValue(IDCTG_CMDO_TURRETS, "FALSE");
  10.  
  11.     if ($pref::mapFilter & 0x0004) Control::setValue(IDCTG_CMDO_ITEMS, "TRUE");
  12.     else Control::setValue(IDCTG_CMDO_ITEMS, "FALSE");
  13.  
  14.     if ($pref::mapFilter & 0x0008) Control::setValue(IDCTG_CMDO_OBJECTS, "TRUE");
  15.     else Control::setValue(IDCTG_CMDO_OBJECTS, "FALSE");
  16.  
  17.     if (String::ICompare($pref::mapSensorRange, "TRUE") == 0) Control::setValue(IDCTG_CMDO_RADAR, "TRUE");
  18.     else Control::setValue(IDCTG_CMDO_RADAR, "FALSE");
  19.  
  20.     if (String::ICompare($pref::mapNames, "TRUE") == 0) Control::setValue(IDCTG_CMDO_EXTRA, "TRUE");
  21.     else Control::setValue(IDCTG_CMDO_EXTRA, "FALSE");
  22.  
  23.    Control::setValue("TVButton", false);
  24. }